home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 06 / 8 / DISK0685.ZIP / FORTH.ARC / 4TH-UG.TOC < prev    next >
Text File  |  1987-05-17  |  4KB  |  81 lines

  1.  
  2.  
  3.  
  4.                                                                Page i
  5.                                       Table of Contents
  6.         
  7.         
  8.         2.0  Quick Reference . . . . . . . . . . . . . . . . . .    2
  9.           2.1  System Requirements . . . . . . . . . . . . . . .    2
  10.           2.2  Invocation. . . . . . . . . . . . . . . . . . . .    2
  11.           2.3  Provided Documentation. . . . . . . . . . . . . .    3
  12.         3.0  Introduction  . . . . . . . . . . . . . . . . . . .    4
  13.         4.0  User's Guide  . . . . . . . . . . . . . . . . . . .    6
  14.           4.1  System Requirements . . . . . . . . . . . . . . .    6
  15.           4.2  FORTH Calculator Style  . . . . . . . . . . . . .    7
  16.             4.2.1  Getting Started . . . . . . . . . . . . . . .    7
  17.             4.2.2  Communicating With FORTH  . . . . . . . . . .    7
  18.             4.2.3  Special Functions . . . . . . . . . . . . . .    8
  19.             4.2.4  New Definitions . . . . . . . . . . . . . . .    8
  20.             4.2.5  Exiting FORTH . . . . . . . . . . . . . . . .    9
  21.           4.3  Using the Disk  . . . . . . . . . . . . . . . . .   10
  22.             4.3.1  Creating and Editing Definitions  . . . . . .   10
  23.             4.3.2  FORTH Disk Access . . . . . . . . . . . . . .   11
  24.             4.3.3  Screen File Access  . . . . . . . . . . . . .   11
  25.             4.3.4  Compiling Definitions . . . . . . . . . . . .   13
  26.             4.3.5  Other Functions . . . . . . . . . . . . . . .   14
  27.               4.3.5.1  Changing the Default Drive  . . . . . . .   14
  28.               4.3.5.2  Directory Information . . . . . . . . . .   14
  29.               4.3.5.3  Erasing Files . . . . . . . . . . . . . .   14
  30.               4.3.5.4  Screen Transfer . . . . . . . . . . . . .   15
  31.               4.3.5.5  Screen File Status  . . . . . . . . . . .   15
  32.               4.3.5.6  Notes . . . . . . . . . . . . . . . . . .   17
  33.           4.4  Modifying FORTH . . . . . . . . . . . . . . . . .   18
  34.             4.4.1  FORTH Extensions  . . . . . . . . . . . . . .   18
  35.             4.4.2  Patching  . . . . . . . . . . . . . . . . . .   18
  36.             4.4.3  Assembly Source Modifications . . . . . . . .   19
  37.         5.0  Technical Reference . . . . . . . . . . . . . . . .   20
  38.           5.1  Assembly Source . . . . . . . . . . . . . . . . .   20
  39.             5.1.1  Source File Organization  . . . . . . . . . .   20
  40.             5.1.2  Macros  . . . . . . . . . . . . . . . . . . .   21
  41.             5.1.3  Comments  . . . . . . . . . . . . . . . . . .   21
  42.           5.2  Modifications . . . . . . . . . . . . . . . . . .   22
  43.             5.2.1  Boot Parameters . . . . . . . . . . . . . . .   22
  44.             5.2.2  Machine Code Definitions  . . . . . . . . . .   22
  45.             5.2.3  High-Level Utility Definitions  . . . . . . .   22
  46.             5.2.4  Installation Dependent Code . . . . . . . . .   23
  47.               5.2.4.1  Console I/O . . . . . . . . . . . . . . .   23
  48.               5.2.4.2  Printer I/O . . . . . . . . . . . . . . .   23
  49.               5.2.4.3  Disk I/O  . . . . . . . . . . . . . . . .   23
  50.             5.2.5  High-Level Definitions  . . . . . . . . . . .   24
  51.             5.2.6  System Tools  . . . . . . . . . . . . . . . .   24
  52.                 5.2.7  RAM Workspace . . . . . . . . . . . . . . . .   24
  53.             5.2.8  Memory Map  . . . . . . . . . . . . . . . . .   24
  54.             5.2.9  Other . . . . . . . . . . . . . . . . . . . .   24
  55.           5.3  Additions . . . . . . . . . . . . . . . . . . . .   25
  56.             5.3.1  Command Line Interpretation . . . . . . . . .   25
  57.             5.3.2  File Interface  . . . . . . . . . . . . . . .   25
  58.         6.0  Glossary  . . . . . . . . . . . . . . . . . . . . .   27
  59.           6.1  Assembly Listing Definitions. . . . . . . . . . .   28
  60.           6.2  Deleted Definitions . . . . . . . . . . . . . . .   35
  61.           6.3  High-level Extensions . . . . . . . . . . . . . .   36
  62.  
  63.  
  64.  
  65.  
  66.                                                                        Page ii
  67.                                       Table of Contents
  68.  
  69.  
  70.         7.0  Future Extensions . . . . . . . . . . . . . . . . .   38
  71.         8.0  FORTH Sources . . . . . . . . . . . . . . . . . . .   39
  72.  
  73.         Appendix A - Using Execution Vectors . . . . . . . . . .   40
  74.           A.1  Concepts. . . . . . . . . . . . . . . . . . . . .   40
  75.           A.2  An Example  . . . . . . . . . . . . . . . . . . .   41
  76.  
  77.         Appendix B - Building FORTH.COM  . . . . . . . . . . . .   42
  78.  
  79.  
  80.         
  81.